table.PARENT_LINK_EXPR_GET Function

Syntax

Table_Name as C = Parent_Link_Expr_Get()

Description

Returns the parent linking expression.

Discussion

The .PARENT_LINK_EXPR_GET() method returns the link expression of the parent table of a child table in a set.

Example

The following example works with the AlphaSports sample database.

dim st as P
dim tbl as P
st = set.open("inventory")
tbl = st.table_get("c:\databases\Expressions Test\Vendor.dbf")
? tbl.parent_link_expr_get()
= "VENDOR"

See Also